home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Software of the Month Club / Amiga General Interest Volume 220 (1995)(SOMC)(Disk 2 of y)[SMCxxxC30Ix].zip / Amiga General Interest Volume 220 (1995)(SOMC)(Disk 2 of y)[SMCxxxC30Ix].adf / Typeface / Source / dmakefile < prev    next >
Makefile  |  1995-09-30  |  235b  |  10 lines

  1. SRCS = typeface.c char.c error.c gadget.c node.c preview.c text.c locale.c
  2. OBJS = $(SRCS:"*.c":"*.o")
  3. EXE  = Typeface
  4.  
  5. $(EXE) : $(OBJS)
  6.     dcc %(right) -o %(left) -l bgui -l textfield
  7.  
  8. $(OBJS) : $(SRCS)
  9.     dcc -c %(right) -o %(left)
  10.